home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / copy_file < prev    next >
Text File  |  2001-04-06  |  671b  |  20 lines

  1. SYNOPSIS
  2.         int copy_file(string from, string to)
  3.  
  4. DESCRIPTION
  5.         The efun copy_file() will copy the file <from> to the new name <to>.
  6.         If <to> exists and is a directory, then <from> will be placed in that
  7.         directory and keep its original name.
  8.         
  9.         You must have read permission for <from> and write permission for
  10.         the target file to copy the file.
  11.         
  12.         On successfull completion copy_file() will return 0. If any error
  13.         occurs, 1 is returned, or a runtime is generated.
  14.  
  15. EXAMPLE
  16.         copy_file("/players/wizard/obj.c", "/players/wizard/newobj.c");
  17.  
  18. SEE ALSO
  19.         mkdir(E), rmdir(E), rm(E), rename(E)
  20.